RetroPie forum home
    • Recent
    • Tags
    • Popular
    • Home
    • Docs
    • Register
    • Login
    1. Home
    2. Tags
    3. boot config
    Log in to post
    • All categories
    • W

      boot/config.txt question about settings for secondary monitor (marquee)

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support boot config second screen retropie 4.8.4 marquee piemarquee2
      3
      0 Votes
      3 Posts
      798 Views
      W

      @mitu thank you for these links!! I will give these edits a go when I get home this evening and report back!

      Thank you again! So helpful!!

    • P

      "File Type Unknown" Error when i change pi resolution

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support help & support retro pie resolution boot config
      20
      0 Votes
      20 Posts
      1k Views
      P

      @mitu
      Thank you for your excellent support.
      I was under the impression that both HDMI's mimic each other. It seems not to be the case.

      I plugged the wire from one HDMI port to the other and it worked perfectly.
      correction resolution and UI is 10 times faster along with the games and the input delay.

      Thank you so much.

    • TangoT

      Does a USB drive need a boot sector to boot properly?

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support boot boot config usb drive
      7
      0 Votes
      7 Posts
      971 Views
      TangoT

      I got it all working and wrote up notes on what I had to do in this post.

    • R

      Remove Initial Boot Screen

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support boot config boot screen retropie
      5
      0 Votes
      5 Posts
      3k Views
      ClydeC

      @rtarroyo said in Remove Initial Boot Screen:

      using the terminal remotely is lightyears better, I feel stupid for not knowing that was an option.

      Then please spread the word, as many people (especially Windows users) think about the terminal as backward and cumbersome, while in fact it's very powerful and no rocket science with a little willingness to learn.

      I compare it sometimes to a Swiss Army knife next to the everyday knife and fork (the graphical desktop), or a look under a car's hood in addition to its dashboard. 😉

      Besides remote administration, it's perfect for doing the same thing over and over, e.g. processing a big number of files (example, example).

      To become even more efficient with the terminal, I can highly recommend to check out its keyboard shortcuts, especially those for Tab Completion and the Command History.

      End of the noncommercial break. 🤓

    • jtkblueJ

      need to make my boot config partition unable to be edited by the system.

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support boot boot config bpp script script request
      4
      0 Votes
      4 Posts
      418 Views
      ClydeC

      Just for the record, this command removes write permissions from the file:

      sudo chmod -w /boot/config.txt

      Restore them only for the owner (the default) with u+w instead of -w.

      But note that any script that runs with admin rights can change the file nonetheless.

      edit: Ah, I noticed the logical flaw in this. The file is owned by the admin user root and it is already only editable by the owner. So removing w wouldn't make any difference in this case. 😇

    • MeltedPineappleM

      Retropie wants to reconfigure my controller after very boot up.

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support config message boot config terminal
      4
      0 Votes
      4 Posts
      325 Views
      mituM

      What's the content of the file you deleted (es_input.cfg) ?

    • B

      Howto : optimized /boot/config.txt

      Watching Ignoring Scheduled Pinned Locked Moved Ideas and Development raspberry pi 4 boot config overclocking
      4
      0 Votes
      4 Posts
      9k Views
      D

      @bilu just to say thanks. To date, I've been underwhelmed by the PI4 performance since I swapped from my pi3.

      I've been struggling with all kinds of screen tearing issues, despite overclocking to 2.1ghz.

      I borrowed this configuration and everything is now running buttery smooth.

      Thanks for sharing.

    • FrazattoF

      Script to start ES or Desktop on boot

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support boot config
      26
      0 Votes
      26 Posts
      6k Views
      M

      Sorry to resurrect this interesting topic so much later. I came to it after looking for a script that allows us to select in a menu at the start if we want to start emulationstation or the desktop. I know that it's not exactly the same as what was discussed in this thread but it's very related. I've ended up making a custom script modifying /opt/retropie/configs/all/autostart.sh, and since I think it might be useful to someone, I'll leave it here for reference (this is the new content of that autostart.sh file):

      ## Get WT Sizes WT_HEIGHT=18 WT_WIDTH=$(tput cols) if [ -z "$WT_WIDTH" ] || [ "$WT_WIDTH" -lt 60 ]; then WT_WIDTH=80 fi if [ "$WT_WIDTH" -gt 178 ]; then WT_WIDTH=120 fi WT_MENU_HEIGHT=$(($WT_HEIGHT-7)) ## Get Architecture ARCH=$(dpkg --print-architecture) ## Dialog Menu if [ "$ARCH" = "armhf" ] || [ "$ARCH" = "arm64" ] ; then sw=`DIALOG_ERROR=5 DIALOG_ESC=1 dialog --timeout 6 --no-cancel --title "Raspberry Pi Startup Selection Tool" --backtitle "$(cat /proc/device-tree/model)" \ --menu "Startup Options" $WT_HEIGHT $WT_WIDTH $WT_MENU_HEIGHT \ "1 EmulationStation" "Front-end of RetroPie Project" \ "2 Desktop" "Raspbian PIXEL Desktop Enviroment" \ "3 Console" "Abort auto-start and remain in console" \ 3>&1 1>&2 2>&3` else sw=`DIALOG_ERROR=5 DIALOG_ESC=1 dialog --timeout 6 --no-cancel --title "Raspberry Pi Startup Selection Tool" \ --menu "Startup Options" $WT_HEIGHT $WT_WIDTH $WT_MENU_HEIGHT \ "1 EmulationStation" "Front-end of RetroPie Project" \ "2 Desktop" "Raspbian PIXEL Desktop Enviroment" \ "3 Console" "Abort auto-start and remain in console" \ 3>&1 1>&2 2>&3` fi rc=$? #reset #no needed clear source $HOME/.bashrc case $rc in 0) case "$sw" in "1 EmulationStation") emulationstation ;; "2 Desktop") startx ;; "3 Console") echo "" ;; *) emulationstation ;; esac;; 1) emulationstation ;; 5) emulationstation ;; *) emulationstation ;; esac

      This is what it looks like:

      autostart_retropie_screenshot

      It's set to run emulationstation by default. A timeout of 6 seconds is established, so if the user does not press any key for 6 seconds, the default option (emulationstation) is executed. I've used dialog for the menu instead of whiptailonly because this last doesn't have the --timeout option, and although you can achieve a similar effect with other tricks it's a bit more complicated, both should work fine either way.

    • S

      Black borders with disable_overscan=1

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support boot config overscan
      19
      0 Votes
      19 Posts
      4k Views
      BuZzB

      If you're using berryboot, that has its own config.txt

      Berryboot isn't supported btw, and we don't provide berryboot images for the rpi4. I wasn't sure if you meant above you installed the standard image to test after.

    • sirhenrythe5thS

      adding new system to custom es_systems.cfg

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support essystems.cfg boot config
      3
      0 Votes
      3 Posts
      486 Views
      sirhenrythe5thS

      Great, thank you very much @BuZz !!

    • A

      [SOLVED] Portable retropie device won't output sound from speakers unless hdmi plugged in at startup

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support 1up audio issues boot config hdmi audio
      6
      0 Votes
      6 Posts
      1k Views
      mituM

      @ahndrooan You can edit the topic title - there's no 'solved' checkbox :).

    • B

      Black screen flashing

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support black screen flashing boot config overscan
      4
      0 Votes
      4 Posts
      1k Views
      B

      I was actually wrong it started up again but when i connected a power supply to my hdmi av connector it stopped and has been good since i think it is a power issue and using overscan must draw less power so thats why it seemed better

    • M

      External Boot in my image

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support external hdd boot config boot from hdd boot problem boot crash
      5
      0 Votes
      5 Posts
      1k Views
      M

      @Clyde said in External Boot in my image:

      @MPlay Thank you for sharing your solution.

      you are welcome, my next step is set retropie to stream my game play (if possible in net play mode) in my youtube channel.

      thank you and other friends for support.

    • M

      2560 x 1080 - error creating SDL window

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support resolution boot config ultrawide
      5
      0 Votes
      5 Posts
      2k Views
      DougAD

      @microb41 According to the Raspberrypi website, there is a pixel clock limit, ie effectively a limit to the number of pixels that can be controlled, of 1920x1200@60 Hz, so as your resolution exceeds that, it shouldn't work

      You can set higher resolutions, in config.txt, but they won't work.

      https://www.raspberrypi.org/documentation/configuration/config-txt/video.md

      Further down on the same page, it shows you how to create a custom screen resolution, so it would be worth you looking at that to get the aspect ratio you want.

    • F

      No /boot/config.txt

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support berryboot retropie boot config config.txt
      2
      0 Votes
      2 Posts
      1k Views
      BuZzB

      @fuzzybat23 berryboot works differently. You can mount the partition with the globally shared config.txt though - https://raspberrypi.stackexchange.com/questions/6972/location-of-berryboots-config-txt

    • jebbettJ

      Screen Saver and Boot questions

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support screensaver boot config
      5
      0 Votes
      5 Posts
      955 Views
      jebbettJ

      @mitu

      I've also solved the screen saver problem and added a script to trigger and Enter Key press, 8 seconds triggers this about 2 seconds after loading..

      I've created a script to emulate the key press.. updated the post below:

      https://retropie.org.uk/forum/post/129603

    • A

      Attract Mode Removal

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support attract mode boot config
      3
      0 Votes
      3 Posts
      7k Views
      B

      After doing what @Brigane suggested, I believe you can uninstall Attract Mode from the RetroPie-Setup.

    • M

      NBA JAM

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support booting boot config cabinet build
      3
      0 Votes
      3 Posts
      1k Views
      M

      Thanks very much

    • J

      retropie on raspbian boot order

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support boot config raspbian raspberrypi 3b pixel
      10
      0 Votes
      10 Posts
      5k Views
      BuZzB

      @Krisu not a good first response to get help here.

      How about:

      Because I asked you to. It may not be the same issue - cause may be different. Lots has changed in 2 years. The forum wouldn't work if everyone used one topic per type of issue.
    • R

      Atrract mode and BT keyboard not working

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support keyboard bluetooth attract mode boot config
      6
      0 Votes
      6 Posts
      2k Views
      FloobF

      Yes, give it a go from a version with the standard build and add AM from experimental. I'm sure Buzz integrated it better than I would have done, plus I could do the same to help debug if it still doesnt work.